.download_list{
	position:relative;
	display:inline-block;
	width:90%;
	min-width: 720px;
	height:0;
	padding-bottom: 45%;
	margin:0 0 0 0;
	background-color:#FFFFFF;
}

.download_list_lable{
	background-image:linear-gradient(120deg,var(--theme1),var(--theme3));
	color:#FFFFFF;
}

.download_list_content{
	position:absolute;
	width:calc(100% - 3px);
	height:calc(100% - 2.75em);
	border-width:0px 2px 2px 2px;
	border-style: solid;
	border-color:var(--theme1) var(--theme3) var(--theme3) var(--theme1);
	overflow: auto;
}

.sub_list_onethird{
	position: relative;
	display: inline-block;
	width: calc(33.33% - 2px);
	height: 100%;
	border-width:0px 1px 0px 0px;
	border-style: solid;
	border-color:var(--theme3);
}

.download_list_content_onethird{
	position:absolute;
	width:100%;
	height:calc(100% - 1.75em);
	overflow: auto;
}

@media screen and (max-width: 800px){
	.download_list{
		width: 100%;
		min-width: 0px;
		height:auto;
		padding-bottom: 0;
	}
	.download_list_content{
		position:static;
		width:auto;
		height:auto;
	}
	.sub_list_onethird{
		width: 100%;
	}
	.download_list_content_onethird{
		position:static;
		width:auto;
		height:auto;
	}
}